crypto/tls.clientHandshakeState.suite (field)
23 uses
crypto/tls (current package)
handshake_client.go#L36: suite *cipherSuite
handshake_client.go#L554: hs.finishedHash = newFinishedHash(c.vers, hs.suite)
handshake_client.go#L624: c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
handshake_client.go#L631: if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
handshake_client.go#L636: if hs.c.config.CipherSuites == nil && !fips140tls.Required() && rsaKexCiphers[hs.suite.id] {
handshake_client.go#L640: if hs.c.config.CipherSuites == nil && !fips140tls.Required() && tdesCiphers[hs.suite.id] {
handshake_client.go#L645: hs.c.cipherSuite = hs.suite.id
handshake_client.go#L708: keyAgreement := hs.suite.ka(c.vers)
handshake_client.go#L776: hs.masterSecret = extMasterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret,
handshake_client.go#L786: hs.masterSecret = masterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret,
handshake_client.go#L860: keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
handshake_client.go#L863: if hs.suite.cipher != nil {
handshake_client.go#L864: clientCipher = hs.suite.cipher(clientKey, clientIV, false /* not for reading */)
handshake_client.go#L865: clientHash = hs.suite.mac(clientMAC)
handshake_client.go#L866: serverCipher = hs.suite.cipher(serverKey, serverIV, true /* for reading */)
handshake_client.go#L867: serverHash = hs.suite.mac(serverMAC)
handshake_client.go#L869: clientCipher = hs.suite.aead(clientKey, clientIV)
handshake_client.go#L870: serverCipher = hs.suite.aead(serverKey, serverIV)
handshake_client.go#L945: if hs.session.cipherSuite != hs.suite.id {
 |
The pages are generated with Golds v0.8.5. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |